/* Hero Section */
.hero-section--location {
    background-image: url('/03 support/img/contact-location.webp');
  }
  
  /* 지도 영역 */
  .embed-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .embed-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 1rem;
  }
  
  /* Contact Section */
  .contact-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 7rem 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
  }
  
  .contact-section__info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  /* contact-item 세로 정렬 버전 */
  .contact-item {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    position: relative;
  }
  
  /* PC용 구분선 */
  .contact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e0e0e0;
  }
  
  /* 아이콘 + 타이틀 묶음 */
  .contact-item__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-item__icon img {
    width: 36px;
    height: 36px;
  }
  
  .contact-item__title {
    font-weight: 700;
    color: var(--color-gray-900)
  }
  
  /* 설명 텍스트 */
  .contact-item__desc {
    line-height: 1.6;
    color: var(--color-gray-900);
  }

  @media (max-width: 1024px) {
    .contact-section__info {
      flex-direction: column;
      gap: 0rem;
      align-items: center; /* 전체를 가운데로 */
    }

    .contact-section {
        padding: 4rem 1.5rem 0rem 1.5rem;
        max-width: 1240px;
        gap: 1rem;
      }
      
  
    .contact-item {
      flex-direction: row;
      justify-content: center;  
      align-items: center;
      text-align: center;  
      gap: 4rem;
      padding: 3rem 0;
      border-bottom: 1px solid #eee;
      position: relative;
      width: 100%; 
    }
  
    .contact-item__top {
      flex: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  
    .contact-item__desc {
      flex: none;
      text-align: center;
      width: 194px;
    }

    .contact-item:not(:last-child)::after {
        display: none;
      }

      .contact-item:last-child {
        border-bottom: none; /* 마지막 아이템 구분선 제거 */
      }
  }
  
  /* 모바일 대응 */
  @media (max-width: 768px) {
    .contact-section__info {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-item {
      width: 100%;
      padding-bottom: 2rem;
      border-bottom: 1px solid #eee;
      gap: 2.5rem;
    }
  
    .contact-item:last-child {
      border-bottom: none;
    }
  
    .contact-item::after {
      display: none;
    }

    .contact-item__icon img {
        width: 24px;
        height: 24px;
      }
      
      .contact-item__title {
        font-size: 1.25rem;
      }
      
      /* 설명 텍스트 */
      .contact-item__desc {
        font-size: .875rem;
      }
  }